home *** CD-ROM | disk | FTP | other *** search
/ Amiga Tools 5 / Amiga Tools 5.iso / grafik / 3d & render tools / irit / man / man6 / nth.6 < prev    next >
Encoding:
Text File  |  1996-07-16  |  285 b   |  18 lines

  1. .TH NTH
  2.  6 "IRIT Version 6.0" 
  3. .SH NAME
  4. NTH
  5.  
  6.  
  7.  
  8.  AnyType NTH( ListType ListObject, NumericType Index )
  9.  
  10. Returns the Index (base count 1) element of the list ListObject.
  11.  
  12. Example:
  13.  
  14.     Lst = list( a, list( b, c ), d );
  15.     Lst2 = NTH( Lst, 2 );
  16.  
  17. and now Lst2 is equal to 'list( b, c )'.
  18.